blairevans@ubuntu:~/Desktop/io$ make -f hello.temp.45.make avr-gcc -mmcu=attiny45 -Wall -Os -DF_CPU=8000000 -I./ -o hello.temp.45.out hello.temp.45.c avr-objcopy -j .text -O ihex hello.temp.45.out hello.temp.45.c.hex;\ avr-size --mcu=attiny45 --format=avr hello.temp.45.out AVR Memory Usage ---------------- Device: attiny45 Program: 426 bytes (10.4% Full) (.text + .data + .bootloader) Data: 0 bytes (0.0% Full) (.data + .bss + .noinit) blairevans@ubuntu:~/Desktop/io$ make -f hello.temp.45.make program-usbtiny avr-objcopy -j .text -O ihex hello.temp.45.out hello.temp.45.c.hex;\ avr-size --mcu=attiny45 --format=avr hello.temp.45.out AVR Memory Usage ---------------- Device: attiny45 Program: 426 bytes (10.4% Full) (.text + .data + .bootloader) Data: 0 bytes (0.0% Full) (.data + .bss + .noinit) avrdude -p t45 -P usb -c usbtiny -U flash:w:hello.temp.45.c.hex avrdude: AVR device initialized and ready to accept instructions Reading | ################################################## | 100% 0.01s avrdude: Device signature = 0x1e9206 avrdude: NOTE: FLASH memory has been specified, an erase cycle will be performed To disable this feature, specify the -D option. avrdude: erasing chip avrdude: reading input file "hello.temp.45.c.hex" avrdude: input file hello.temp.45.c.hex auto detected as Intel Hex avrdude: writing flash (426 bytes): Writing | ################################################## | 100% 0.92s avrdude: 426 bytes of flash written avrdude: verifying flash memory against hello.temp.45.c.hex: avrdude: load data flash data from input file hello.temp.45.c.hex: avrdude: input file hello.temp.45.c.hex auto detected as Intel Hex avrdude: input file hello.temp.45.c.hex contains 426 bytes avrdude: reading on-chip flash data: Reading | ################################################## | 100% 0.58s avrdude: verifying ... avrdude: 426 bytes of flash verified avrdude: safemode: Fuses OK avrdude done. Thank you. blairevans@ubuntu:~/Desktop/io$ python hello.temp.45.py /dev/ttyUSB0 0 blairevans@ubuntu:~/Desktop/io$ python hello.temp.45.py /dev/ttyUSB0 0 blairevans@ubuntu:~/Desktop/io$ python term.py /dev/ttyUSB0 9600 blairevans@ubuntu:~/Desktop/io$ make -f hello.step.45.make avr-gcc -mmcu=attiny45 -Wall -Os -DF_CPU=8000000 -I./ -o hello.step.45.out hello.step.45.c avr-objcopy -j .text -O ihex hello.step.45.out hello.step.45.c.hex;\ avr-size --mcu=attiny45 --format=avr hello.step.45.out AVR Memory Usage ---------------- Device: attiny45 Program: 738 bytes (18.0% Full) (.text + .data + .bootloader) Data: 0 bytes (0.0% Full) (.data + .bss + .noinit) blairevans@ubuntu:~/Desktop/io$ make -f hello.step.45.make program-usbtiny avr-objcopy -j .text -O ihex hello.step.45.out hello.step.45.c.hex;\ avr-size --mcu=attiny45 --format=avr hello.step.45.out AVR Memory Usage ---------------- Device: attiny45 Program: 738 bytes (18.0% Full) (.text + .data + .bootloader) Data: 0 bytes (0.0% Full) (.data + .bss + .noinit) avrdude -p t45 -P usb -c usbtiny -U flash:w:hello.step.45.c.hex avrdude: AVR device initialized and ready to accept instructions Reading | ################################################## | 100% 0.01s avrdude: Device signature = 0x1e9206 avrdude: NOTE: FLASH memory has been specified, an erase cycle will be performed To disable this feature, specify the -D option. avrdude: erasing chip avrdude: reading input file "hello.step.45.c.hex" avrdude: input file hello.step.45.c.hex auto detected as Intel Hex avrdude: writing flash (738 bytes): Writing | ################################################## | 100% 1.62s avrdude: 738 bytes of flash written avrdude: verifying flash memory against hello.step.45.c.hex: avrdude: load data flash data from input file hello.step.45.c.hex: avrdude: input file hello.step.45.c.hex auto detected as Intel Hex avrdude: input file hello.step.45.c.hex contains 738 bytes avrdude: reading on-chip flash data: Reading | ################################################## | 100% 1.00s avrdude: verifying ... avrdude: 738 bytes of flash verified avrdude: safemode: Fuses OK avrdude done. Thank you. blairevans@ubuntu:~/Desktop/io$ python hello.step.45.py /dev/ttyUSB0 0 blairevans@ubuntu:~/Desktop/io$ python hello.temp.45.py /dev/ttyUSB0